Uses of Class
org.eclipse.vtp.framework.interactions.voice.vxml.BasicOutput

Packages that use BasicOutput
org.eclipse.vtp.framework.interactions.voice.vxml   
 

Uses of BasicOutput in org.eclipse.vtp.framework.interactions.voice.vxml
 

Subclasses of BasicOutput in org.eclipse.vtp.framework.interactions.voice.vxml
 class BasicOutputSet
          The OutputSet class allows the combination of Outputs into a single output for the IVR to render to the caller.
 class TextOutput
          The TextOutput class wraps raw text that is meant to be rendered to the caller with TTS.
 class ValueOutput
          The ValueOutput represents the <value> VXML element.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml that return BasicOutput
 BasicOutput Option.getOutput()
          Returns the TTS output that is played to the caller when this option is enumerated to the caller.
 BasicOutput[] BasicOutputSet.getOutputs()
          Returns the list of outputs in this set.
 

Methods in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type BasicOutput
 void BasicOutputSet.addOutput(BasicOutput output)
          Appends the BasicOutput to the list of outputs to render to the caller.
 void BasicOutputSet.removeOutput(BasicOutput output)
          Removes the BasicOutput from the list of outputs to render to the caller.
 void Option.setOutput(BasicOutput output)
          Sets the TTS output that is played to the caller when this option is enumerated to the caller.
 

Constructors in org.eclipse.vtp.framework.interactions.voice.vxml with parameters of type BasicOutput
Option(BasicOutput output)
          Creates a new instance of Option with the specified TTS output.
Option(BasicOutput output, java.lang.String dtmf)
          Creates a new instance of Option with the specified TTS output and DTMF grammar.
Option(BasicOutput output, java.lang.String dtmf, java.lang.String value)
          Creates a new instance of Option with the specified TTS output, DTMF grammar, and value.